home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 296_01.zip / CTOCXX < prev    next >
Text File  |  1993-04-01  |  592b  |  28 lines

  1. # Makefile for the ctocxx translator - Charlie Havener
  2. HEADERS=ctocxx.h ytab.h 
  3.  
  4. ytab.c: gram.y
  5.     yacc -d gram.y
  6.  
  7. ytab.obj: ytab.c 
  8.     cl /Zi /Dbugprint /c ytab.c
  9.  
  10. lexyy.c: ctocxx.l
  11.     flex ctocxx.l
  12.  
  13. lexyy.obj: lexyy.c $(HEADERS)
  14.     cl /Zi /Dbugprint /c lexyy.c
  15.  
  16. symtab.obj: symtab.c $(HEADERS)
  17.     cl /Zi /Dbugprint /c symtab.c
  18.  
  19. ctocxx.obj: ctocxx.c $(HEADERS)
  20.     cl /Zi /Dbugprint /c ctocxx.c
  21.  
  22. subs.obj: subs.c $(HEADERS)
  23.     cl /Zi /Dbugprint /c subs.c
  24.  
  25. ctocxx.exe: ctocxx.obj lexyy.obj ytab.obj symtab.obj
  26.     cl /Zi /Dbugprint ctocxx.obj lexyy.obj subs.obj symtab.obj ytab.obj
  27.  
  28.